home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Games / net3d-0.08 / net.h < prev    next >
C/C++ Source or Header  |  1995-06-22  |  388b  |  21 lines

  1. /* net.h
  2.  *
  3.  * includes, definitions and external variables needed, by net.c
  4.  */
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <string.h>
  8. #include <stdarg.h>
  9. #include <sys/types.h>
  10. #include <sys/stat.h>
  11. #include <sys/socket.h>
  12. #include <netinet/in.h>
  13. #include <netdb.h>
  14. #include <unistd.h>
  15.  
  16. #include "netprotos.h"
  17.  
  18. #define NET_PORT 6789            /* port for transmission */
  19. extern int errno;
  20.  
  21.